home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / smlltalk / smtk_11.zoo / Bag.st < prev    next >
Text File  |  1990-05-26  |  5KB  |  183 lines

  1. "======================================================================
  2. |
  3. |   Bag Method Definitions
  4. |
  5.  ======================================================================"
  6.  
  7.  
  8. "======================================================================
  9. |
  10. | Copyright (C) 1988, 1989, 1990 Free Software Foundation, Inc.
  11. | Written by Steve Byrne.
  12. |
  13. | This file is part of GNU Smalltalk.
  14. |
  15. | GNU Smalltalk is free software; you can redistribute it and/or modify it
  16. | under the terms of the GNU General Public License as published by the Free
  17. | Software Foundation; either version 1, or (at your option) any later version.
  18. | GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  19. | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  20. | FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  21. | details.
  22. | You should have received a copy of the GNU General Public License along with
  23. | GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  24. | Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  25. |
  26.  ======================================================================"
  27.  
  28.  
  29. "
  30. |     Change Log
  31. | ============================================================================
  32. | Author       Date       Change 
  33. | sbyrne     25 Apr 89      created.
  34. |
  35. "
  36.  
  37. Collection subclass: #Bag
  38.        instanceVariableNames: 'contents'
  39.        classVariableNames: ''
  40.        poolDictionaries: ''
  41.        category: nil.
  42.  
  43. Bag comment:
  44. 'My instances are unordered collections of objects.  You can think
  45. of me as a set with a memory; that is, if the same object is added to me
  46. twice, then I will report that that element has been stored twice.'!
  47.  
  48.  
  49. !Bag class methodsFor: 'basic'!
  50.  
  51. new
  52.     ^super new initContents
  53. !!
  54.  
  55.  
  56.  
  57. !Bag methodsFor: 'Adding to a collection'!
  58.  
  59. add: newObject withOccurrences: anInteger
  60.     contents at: newObject
  61.          put: (self occurrencesOf: newObject) + anInteger.
  62.     ^newObject
  63. !
  64.  
  65. add: newObject
  66.     self add: newObject withOccurrences: 1.
  67.     ^newObject 
  68. !
  69.  
  70. at: index
  71.     self error: 'at: is not allowed for a Bag'
  72. !
  73.  
  74. at: index put: value
  75.     self error: 'at:put: is not allowed for a Bag'
  76. !!
  77.  
  78.  
  79.  
  80. !Bag methodsFor: 'Removing from a collection'!
  81.  
  82. remove: oldObject ifAbsent: anExceptionBlock
  83.     | count |
  84.     "Remove oldObject from the collection and return it.  Since we're using
  85.     a dictionary, we need decrement the value until it's zero, in which case
  86.     we can then remove the object from the dictionary"
  87.     count _ self occurrencesOf: oldObject.
  88.     count = 0 ifTrue: [ ^anExceptionBlock value ].
  89.     count = 1 ifTrue: [ contents removeKey: oldObject ]
  90.               ifFalse: [ contents at: oldObject
  91.                                 put: count - 1 ].
  92.     ^oldObject
  93. !!
  94.  
  95.  
  96.  
  97. !Bag methodsFor: 'testing collections'!
  98.  
  99. occurrencesOf: anObject
  100.     ^contents at: anObject ifAbsent: [ ^0 ]
  101. !
  102.  
  103. size
  104.     | count |
  105.     count _ 0.
  106.     contents do: [ :element | count _ count + element ].
  107.     ^count
  108. !
  109.  
  110. hash
  111.     ^contents hash
  112. !
  113.  
  114. = aBag
  115.     contents keysDo:
  116.         [ :aKey | contents occurrencesOf: aKey = aBag occurrencesOf: aKey
  117.                 ifFalse: [ ^false ] ].
  118.     ^true
  119. !!
  120.  
  121.  
  122.  
  123. !Bag methodsFor: 'enumerating the elements of a collection'!
  124.  
  125. do: aBlock
  126.     "Perform the block for all members in the collection.  For Bags, we need
  127.     to go through the contents dictionary, and perform the block for as many
  128.     occurrences of the objects as there are."
  129.     contents associationsDo:
  130.       [ :assoc |  assoc value timesRepeat: [ aBlock value: assoc key ] ]
  131. !!
  132.  
  133.  
  134.  
  135. !Bag methodsFor: 'printing'!
  136.  
  137. printOn: aStream
  138.     | firstTime |
  139.     aStream nextPutAll: self classNameString.
  140.     aStream nextPutAll: ' ('.
  141.     firstTime _ true.
  142.     contents associationsDo:
  143.       [ :assoc | firstTime ifTrue: [ firstTime _ false ]
  144.                              ifFalse: [ aStream nextPut: Character space ].
  145.                  assoc key storeOn: aStream.
  146.          aStream nextPut: $,.
  147.          assoc value storeOn: aStream ].
  148.     aStream nextPut: $)
  149. !!
  150.  
  151.  
  152.  
  153. !Bag methodsFor: 'storing'!
  154.  
  155. storeOn: aStream
  156.     | noElements |
  157.     aStream nextPut: $(.
  158.     aStream nextPutAll: self classNameString.
  159.     aStream nextPutAll: ' new'.
  160.     noElements _ true.
  161.     contents associationsDo:
  162.       [ :assoc | aStream nextPutAll: ' add: '.
  163.                  assoc key storeOn: aStream.
  164.          aStream nextPutAll: ' withOccurrences: '.
  165.          assoc value storeOn: aStream.
  166.          aStream nextPut: $;.
  167.          noElements _ false ].
  168.     noElements ifFalse: [ aStream nextPutAll: '; yourself' ].
  169.     aStream nextPut: $)
  170. !!
  171.  
  172.  
  173.  
  174. !Bag methodsFor: 'private'!
  175.  
  176. initContents
  177.     contents _ Dictionary new
  178.  
  179. !!
  180.  
  181.